home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / dsedit.zip / DSEDIT.TXT < prev    next >
Text File  |  1993-01-02  |  6KB  |  270 lines

  1.  
  2.  
  3.  
  4.  
  5.                       DSEdit - Character Editor for Dark Savant
  6.  
  7.                             Version 1.2,  January 2, 1993
  8.  
  9.                            Copyright (C) 1992 Ted Stephens
  10.  
  11.  
  12.  
  13.  
  14.           Disclaimer:
  15.  
  16.           This utility is not warranted to do anything at all.  It is
  17.           provided  as-is  only, with no other warranties expressed or
  18.           implied.  It may or may not perform according to the specs below.
  19.           Use this utility solely at your own risk.
  20.  
  21.  
  22.           IN NO EVENT WILL I BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING
  23.           ANY LOST PROFITS, LOST SAVINGS OR OTHER INCIDENTAL OR
  24.           CONSEQUENTIAL DAMAGES ARISING OUT OF YOUR USE OR INABILITY TO USE
  25.           THE PROGRAM, OR FOR ANY CLAIMS BY ANY OTHER PARTY.
  26.  
  27.           License:
  28.  
  29.           DSEdit is provided as freeware.  There are no restrictions on its
  30.           use, except that it may not be sold or distributed on a
  31.           commercial basis or with a commercial package, nor may it be
  32.           distributed in any modified form, nor may it be distributed
  33.           without this license notice and documentation file. The author
  34.           reserves all rights to the source code and executable code.
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.                                           1
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.                       DSEdit - Character Editor for Dark Savant
  74.  
  75.                             Version 1.2,  January 2, 1993
  76.  
  77.                            Copyright (C) 1992 Ted Stephens
  78.  
  79.  
  80.  
  81.  
  82.           DSEdit will allow you to edit your save game party.
  83.  
  84.                USAGE: DSEdit <filename.ext>
  85.  
  86.           Field movements are as follows.
  87.                <Tab>          Next field
  88.                <BackTab>      Previous field
  89.                <Arrow Keys>   Moves direction of arrows
  90.                <CtrlPgUp>     Previous character
  91.                <CtrlPgDn>     Next character
  92.                <CtrlEnter>    Exit editor with saving prompt
  93.  
  94.           Spell Picklists
  95.                Press <F2> for a list of spell
  96.                Known spells will be selected
  97.                To add or remove spells press the space bar
  98.                Press <Enter> to exit and save
  99.                Press <ESC> to exit NO save
  100.  
  101.           Item Picklists
  102.                Press <F2> for list of items
  103.                Press <F3> for usage count
  104.                Press ALT-D to delete an item
  105.                Press ALT-U to equip a cursed item
  106.                Press first character to speed search
  107.                Select item then press <Enter>
  108.                Press <ESC> to exit NO save
  109.  
  110.           Item Count Window
  111.                Press <ESC> to exit NO save
  112.                Press <CtrlEnter> to exit and save changes
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.                                           2
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.                       DSEdit - Character Editor for Dark Savant
  142.  
  143.                             Version 1.2,  January 2, 1993
  144.  
  145.                            Copyright (C) 1992 Ted Stephens
  146.  
  147.  
  148.  
  149.  
  150.           Limitations:
  151.                I didn't figure out how to get the pictures to match
  152.                the items added.  The work around is to drop the items
  153.                in the game then pick them back up.  The game will
  154.                assign the correct picture to the items.
  155.  
  156.           Extras:
  157.                Some items need their usage count set to zero.  If you
  158.                have problems with items disappearing after resting,
  159.                check the usage count.
  160.  
  161.           Notes:
  162.                Thanks to W.F. Peterson for his character record layout
  163.                and C source code with the skills, spell, professions,
  164.                races and logic to decode the spell storage.  DSEdit is
  165.                written in Borland Pascal with routines from Object
  166.                Professional.  Source code is free for the asking.
  167.  
  168.           Revisions:
  169.  
  170.                1.0  November 11, 1992 Initial release.
  171.  
  172.                1.1  November 13, 1992 Update
  173.                     Fixed bug in hit points, and stamina points not being saved
  174.                     Add Alt-D to delete an item
  175.                     Add help message to count window
  176.                     Change logic to set all characters to Max at start-up
  177.  
  178.                1.2 January 2, 1993
  179.                     Add file picker to select saved games
  180.                     Reset dead, and all conditions to OK
  181.                     Add Alt-U to equip cursed items
  182.                          1. equip cursed item in game
  183.                          2. save game and exit
  184.                          3. run DSedit press ALT-U to equip cursed item
  185.                          4. save with DSedit and exit
  186.                     Don't remove cursed items or you will have to repeat steps 1-4
  187.  
  188.                Credits:
  189.                     Borland Pascal is a registered trademark of
  190.                     Borland International.  Object Professional
  191.                     is a registered trademark of TurboPower
  192.                     Software.
  193.  
  194.  
  195.  
  196.  
  197.  
  198.                                           3
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.                       DSEdit - Character Editor for Dark Savant
  208.  
  209.                             Version 1.2,  January 2, 1993
  210.  
  211.                            Copyright (C) 1992 Ted Stephens
  212.  
  213.  
  214.  
  215.           Author:
  216.                Send all comments, bugs, etc. to:
  217.                     Ted Stephens             Home Phone (614)793-2296
  218.                     2980 Sawdust Ln.         Work Phone (614)276-5000
  219.                     Dublin, OH 43017-1696    CIS 76515,3433
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.                                           4
  267.  
  268.  
  269.  
  270.